Update python bindings - xs_watch doesn't support a priority anymore.
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Tue, 26 Jul 2005 15:57:18 +0000 (15:57 +0000)
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Tue, 26 Jul 2005 15:57:18 +0000 (15:57 +0000)
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
tools/python/xen/lowlevel/xs/xs.c

index 726b83e8e1082200e7567ed8f9fc0d7ab70a3b37..e8f549f3ea1f61d85ecf6c2497d40cd4c06e6f36 100644 (file)
@@ -367,7 +367,7 @@ static PyObject *xspy_watch(PyObject *self, PyObject *args, PyObject *kwds)
     if (!PyArg_ParseTupleAndKeywords(args, kwds, arg_spec, kwd_spec, 
                                      &path, &priority, &token))
         goto exit;
-    xsval = xs_watch(xh, path, token, priority);
+    xsval = xs_watch(xh, path, token);
     val = pyvalue_int(xsval);
  exit:
     return val;